5721c349e5e4ea76958575a9bf07d7bc4b21165b,core/src/main/java/org/mule/processor/IdempotentRedeliveryPolicy.java,IdempotentRedeliveryPolicy,process,#MuleEvent#,142

Before Change


        }
        catch (RuntimeException ex)
        {
            incrementCounter(messageId, counter);
            throw ex;
        }
    }

After Change


            }
            catch (MuleException ex)
            {
                incrementCounter(messageId);
                throw ex;
            }
            catch (RuntimeException ex)